home *** CD-ROM | disk | FTP | other *** search
/ Geek Games #12 / GEGA012.iso / eroticos / feeltheflash.swf / scripts / frame_1 / PlaceObject2_410_242 / CLIPACTIONRECORD onClipEvent(mouseMove).as < prev   
Text File  |  2005-08-12  |  388b  |  22 lines

  1. onClipEvent(mouseMove){
  2.    if(_root.sv_menuHide == 1)
  3.    {
  4.       if(this.hitTest(_root._xmouse,_root._ymouse,false))
  5.       {
  6.          this._visible = true;
  7.       }
  8.       else
  9.       {
  10.          this._visible = false;
  11.       }
  12.    }
  13.    if(this.hitTest(_root._xmouse,_root._ymouse,false))
  14.    {
  15.       this.menuStackUp();
  16.    }
  17.    else
  18.    {
  19.       this.menuStackDown();
  20.    }
  21. }
  22.